home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Softwarová Záchrana 3
/
Softwarova-zachrana-3.bin
/
Xteq X-Setup
/
xqdcXSP-Setup-EN.exe
/
{app}
/
plugins
/
XQ ICQ 3.xpl
< prev
next >
Wrap
Text File
|
2000-08-07
|
986b
|
46 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="1"
"COUNT"="1"
"UIPATH"="Internet\Instant Messaging\ICQ"
"NAME"="Email Tagline"
"LANGUAGE"="VBScript"
"VERSION"="1.04"
"TEXT 1"="Tagline"
"DESCRIPTION 1"="You can use this plug-in to change the Email tagline for ICQ (TM)."
"DESCRIPTION 2"="ICQ may be obtained at http://www.icq.com/."
"AUTHOR"="Xteq Systems"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"=" "
"COMMENT 2"="Thanks to CptSiskoX for the settings and the idea."
sPath="HKCU\Software\Mirabilis\ICQ\DefaultPrefs\"
sV1="Email Message"
Sub Plugin_Initialize
if RegPathExists(sPath) then
s=RegReadValue(sPath & sV1)
SetUIElement 1,s
else
Disable
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
s=GetUIElement(1)
Call RegWriteValue(sPath & sV1,s,1)
End Sub
Sub Plugin_Terminate
End Sub